From: Dave Love Date: Tue, 19 Nov 2002 14:46:27 +0000 (+0000) Subject: (bcopy, bzero, bcmp): Don't define. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~29597 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=e0e9f7f22d0796017361b0e6501302d1762c0415;p=emacs.git (bcopy, bzero, bcmp): Don't define. --- diff --git a/src/s/sco4.h b/src/s/sco4.h index e4546b88a38..6015ec66385 100644 --- a/src/s/sco4.h +++ b/src/s/sco4.h @@ -128,11 +128,6 @@ Boston, MA 02111-1307, USA. */ #define MAIL_PROGRAM_NAME "/usr/lib/mail/execmail" #endif -/* miano@acosta.enet.dec.com says these are needed. */ -#define bcopy(b1,b2,len) memmove (b2, b1, len) -#define bzero(b,len) memset (b, 0, len) -#define bcmp(b1,b2,len) memcmp (b1, b2, len) - /* Tell process_send_signal to use VSUSP instead of VSWTCH. */ #define PREFER_VSUSP diff --git a/src/s/usg5-4.h b/src/s/usg5-4.h index 097bded32fe..49554b9456f 100644 --- a/src/s/usg5-4.h +++ b/src/s/usg5-4.h @@ -189,14 +189,6 @@ Boston, MA 02111-1307, USA. */ So give it a try. */ #define HAVE_SOCKETS -#ifndef HAVE_BCOPY -#define bcopy(src,dst,n) memmove (dst,src,n) -#define bzero(s,n) memset (s,0,n) -#endif -#ifndef HAVE_BCMP -#define bcmp(src,dst,n) memcmp (src,dst,n) -#endif - /* Markus Weiand says this is needed for Motif on SINIX. */ #undef LIBS_SYSTEM